home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / amitcp / protos / netinet / udp_usrreq_protos.h < prev   
Encoding:
C/C++ Source or Header  |  1993-04-12  |  803 b   |  35 lines

  1. /* Prototypes for functions defined in
  2. udp_usrreq.c
  3.  */
  4.  
  5. void udp_init(void);
  6.  
  7. void STKARGFUN udp_input(register struct mbuf * m,
  8.              int iphlen);
  9.  
  10. struct mbuf * udp_saveopt(caddr_t p,
  11.                           register int size,
  12.                           int type);
  13.  
  14. void udp_notify(register struct inpcb * inp,
  15.         int errno);
  16.  
  17. void udp_ctlinput(int cmd,
  18.                  struct sockaddr * sa,
  19.                  register struct ip * ip);
  20.  
  21. int udp_output(register struct inpcb * inp,
  22.                register struct mbuf * m,
  23.                struct mbuf * addr,
  24.                struct mbuf * control);
  25.  
  26. int udp_usrreq(struct socket * so,
  27.                int req,
  28.                struct mbuf * m,
  29.                struct mbuf * addr,
  30.                struct mbuf * control);
  31.  
  32. void udp_detach(struct inpcb * inp);
  33.  
  34.  
  35.